home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / 1997.ZIP / INPFLD10.ARC / DSPFIELD.C < prev    next >
Text File  |  1987-07-30  |  520b  |  15 lines

  1. /* --------------------------------------------------------- */
  2. /* dispfield - Display the field and position the cursor.    */
  3. /*   M. Burton    20 Jul 87    Written for TurboC V1.0      */
  4. /* --------------------------------------------------------- */
  5. void dispfield(int y, int x, int size,int attr,int pcol,char *ibuf, char filler)
  6. {
  7.    char s[81], f[81];
  8.  
  9.    strcpy(s,ibuf);
  10.    strconst(f,filler,size-strlen(ibuf));
  11.    strcat(s,f);
  12.    displine(y,x,attr,s); /* Display the field */
  13.    cursor(y,x+pcol-1);
  14. }
  15.